home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / HideableClockView.m < prev    next >
Encoding:
Text File  |  1996-01-30  |  258 b   |  20 lines

  1.  
  2. #import "HideableClockView.h"
  3.  
  4. @implementation HideableClockView
  5.  
  6.  
  7. - drawSelf:(const NXRect *)rects :(int)rectCount
  8. {
  9.    if(!hidden)
  10.       return [super drawSelf:rects :rectCount];
  11.  
  12.    PSsetgray(NX_LTGRAY);
  13.    NXRectFill(&bounds);
  14.  
  15.    return self;
  16. }
  17.  
  18.  
  19. @end
  20.